home *** CD-ROM | disk | FTP | other *** search
- ;==========================================================================
- ; Lastcall.Im modifier v1.0
- ; Nemesis [PWA]
- ;
- ; written in about 2 minutes, so dont expect awe inspiring sensationalism
- ;==========================================================================
-
- string config ; config file
- string impath ; path to lastcall.im
- string promptline ; line to display at end of ppe
-
- getuser
- config = ppepath() + "lastcall.cfg"
- fopen 1,config,o_rw,s_dn
- fget 1,impath
- fget 1,promptline
- fclose 1
- fopen 1,impath+"lastcall.im",o_rw,s_dn
- fwrite 1,chr(len(u_name()))+u_name()+" ",30
- fseek 1,31,seek_set
- fwrite 1,chr(len(u_city()))+u_city()+" ",30
- fclose 1
- dispstr promptline
- log "Minutes Used: @OPTEXT@",FALSE
-